home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / mozilla-firefox / include / appcomps / nsIWindowDataSource.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-05-08  |  2.7 KB  |  97 lines

  1. /*
  2.  * DO NOT EDIT.  THIS FILE IS GENERATED FROM nsIWindowDataSource.idl
  3.  */
  4.  
  5. #ifndef __gen_nsIWindowDataSource_h__
  6. #define __gen_nsIWindowDataSource_h__
  7.  
  8.  
  9. #ifndef __gen_nsISupports_h__
  10. #include "nsISupports.h"
  11. #endif
  12.  
  13. #ifndef __gen_nsIDOMWindowInternal_h__
  14. #include "nsIDOMWindowInternal.h"
  15. #endif
  16.  
  17. /* For IDL files that don't want to include root IDL files. */
  18. #ifndef NS_NO_VTABLE
  19. #define NS_NO_VTABLE
  20. #endif
  21.  
  22. /* starting interface:    nsIWindowDataSource */
  23. #define NS_IWINDOWDATASOURCE_IID_STR "3722a5b9-5323-4ed0-bb1a-8299f27a4e89"
  24.  
  25. #define NS_IWINDOWDATASOURCE_IID \
  26.   {0x3722a5b9, 0x5323, 0x4ed0, \
  27.     { 0xbb, 0x1a, 0x82, 0x99, 0xf2, 0x7a, 0x4e, 0x89 }}
  28.  
  29. class NS_NO_VTABLE nsIWindowDataSource : public nsISupports {
  30.  public: 
  31.  
  32.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IWINDOWDATASOURCE_IID)
  33.  
  34.   /**
  35.      * for the given resource name, return the window
  36.      */
  37.   /* nsIDOMWindowInternal getWindowForResource (in string inResource); */
  38.   NS_IMETHOD GetWindowForResource(const char *inResource, nsIDOMWindowInternal **_retval) = 0;
  39.  
  40. };
  41.  
  42. /* Use this macro when declaring classes that implement this interface. */
  43. #define NS_DECL_NSIWINDOWDATASOURCE \
  44.   NS_IMETHOD GetWindowForResource(const char *inResource, nsIDOMWindowInternal **_retval); 
  45.  
  46. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  47. #define NS_FORWARD_NSIWINDOWDATASOURCE(_to) \
  48.   NS_IMETHOD GetWindowForResource(const char *inResource, nsIDOMWindowInternal **_retval) { return _to GetWindowForResource(inResource, _retval); } 
  49.  
  50. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  51. #define NS_FORWARD_SAFE_NSIWINDOWDATASOURCE(_to) \
  52.   NS_IMETHOD GetWindowForResource(const char *inResource, nsIDOMWindowInternal **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWindowForResource(inResource, _retval); } 
  53.  
  54. #if 0
  55. /* Use the code below as a template for the implementation class for this interface. */
  56.  
  57. /* Header file */
  58. class nsWindowDataSource : public nsIWindowDataSource
  59. {
  60. public:
  61.   NS_DECL_ISUPPORTS
  62.   NS_DECL_NSIWINDOWDATASOURCE
  63.  
  64.   nsWindowDataSource();
  65.  
  66. private:
  67.   ~nsWindowDataSource();
  68.  
  69. protected:
  70.   /* additional members */
  71. };
  72.  
  73. /* Implementation file */
  74. NS_IMPL_ISUPPORTS1(nsWindowDataSource, nsIWindowDataSource)
  75.  
  76. nsWindowDataSource::nsWindowDataSource()
  77. {
  78.   /* member initializers and constructor code */
  79. }
  80.  
  81. nsWindowDataSource::~nsWindowDataSource()
  82. {
  83.   /* destructor code */
  84. }
  85.  
  86. /* nsIDOMWindowInternal getWindowForResource (in string inResource); */
  87. NS_IMETHODIMP nsWindowDataSource::GetWindowForResource(const char *inResource, nsIDOMWindowInternal **_retval)
  88. {
  89.     return NS_ERROR_NOT_IMPLEMENTED;
  90. }
  91.  
  92. /* End of implementation class template. */
  93. #endif
  94.  
  95.  
  96. #endif /* __gen_nsIWindowDataSource_h__ */
  97.